home *** CD-ROM | disk | FTP | other *** search
/ The Arsenal Files 8 / The Arsenal Files Collection #8 (Arsenal Computer) (1996).ISO / prg_casm / snip9611.zip / TC15.H < prev    next >
C/C++ Source or Header  |  1996-11-24  |  394b  |  20 lines

  1. /* +++Date last modified: 02-Nov-1995 */
  2.  
  3. /*
  4. **  SNIPPETS doesn't support many older compilers, but it's easy to add
  5. **  compiler or version specific header to make things portable. Here's
  6. **  a sample header for Turbo C 1.5.
  7. */
  8.  
  9. #ifndef TC15__H
  10. #define TC15__H
  11.  
  12. #include "clock.h"
  13. #include "strftime.h"
  14.  
  15. #define signal ssignal
  16.  
  17. #define FILENAME_MAX 80
  18.  
  19. #endif /* TC15__H */
  20.